home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Languages
/
Caml Light 0.7
/
examples
/
basics
/
README
< prev
next >
Wrap
Text File
|
1995-06-17
|
385b
|
15 lines
Three all-time favorites: Fibonacci, Eratosthene's sieve, and the Unix
"wc" utility, presented as standalone programs.
To compile: either "make", or, by hand:
camlc -o fib fib.ml
camlc -o wc wc.ml
camlc -o sieve sieve.ml
To run:
fib 10 # or some other number
wc fib.ml # or some other files
sieve 1000 # or some other number